home *** CD-ROM | disk | FTP | other *** search
Makefile | 2000-01-01 | 391 b | 21 lines |
- #
- # Makefile for FPSE/Amiga plugins
- #
-
- PLUGIN = gpu.a
-
- OBJECTS = gpudma.o gpumain.o gpuset.o poly2.o cache.o syslog.o wingpu.o
-
- all: $(OBJECTS)
- rm -f gpu.a
- ppc-amigaos-ar cru $(PLUGIN) $(OBJECTS)
- ppc-amigaos-ranlib $(PLUGIN)
- copy $(PLUGIN) /$(PLUGIN)
-
- clean:
- rm -f *.o *.a
-
- %.o: %.c
- pgcc -V 2.95.2 -warpup -DMSB_FIRST -c -I../../../../include -Wall -O3 -fomit-frame-pointer $< -o $@
-
-